|
MAKE ARRAY FROM MEMBLOCK
This command will fill an array from the specified memblock
MAKE ARRAY FROM MEMBLOCK Array Name(0), Memblock Number
Array Name(0
Integer
The name of the array
Memblock Number
Integer
The memblock number
This command does not return a value.
dim mydata(10)
for t=0 to 10
a=rnd(255)
print a;
mydata(t)=a
next t
print
make memblock from array 1,mydata(0)
WRITE MEMBLOCK BYTE 1,0,255
make array from memblock mydata(0),1
for t=0 to 10
print mydata(t);
next t
do
loop
end
MEMBLOCKS Commands Menu
Index
|